Declare @Id Int                               
Select @Id = Id From sysobjects Where Name = 'Over_Under'
if not Exists(SELECT * FROM syscolumns WHERE id = @Id and Name = 'Acc_Code')
Alter Table Over_Under Add Acc_Code varchar(20)